Utility function to encode and format message that can be sent to or received from forge framework.
Table of Contents
Install
npm i @arcblock/forge-message
// OR
yarn add @arcblock/forge-message
Usage
const { createMessage, formatMessage } = require('@arcblock/forge-message');
const message = createMessage('Transaction', {
from: '',
nonce: 0,
signature: 'abc',
itx: {
type: 'PokeTx',
value: {
date: '2019-04-25',
address: 'zzzzzzzzzzzzzzzzzzzzz',
},
},
});
const buffer = message.serializeBinary();
Documentation
For full documentation, checkout README.md.
Contributors